home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2000 #5 / Amiga Plus CD - 2000 - No. 5.iso / Tools / Dev / fpc / source / docs / dosex / ex10.pp < prev    next >
Encoding:
Text File  |  2000-01-01  |  267 b   |  15 lines

  1. Program Example10;
  2. uses Dos;
  3.  
  4. { Program to demonstrate the FSearch function. }
  5.  
  6. var
  7.   s : string;
  8. begin
  9.   s:=FSearch(ParamStr(1),GetEnv('PATH'));
  10.   if s='' then
  11.    WriteLn(ParamStr(1),' not Found in PATH')
  12.   else 
  13.    Writeln(ParamStr(1),' Found in PATH at ',s);
  14. end.
  15.